================================================
Style: Sangre Brillante.
CMS: TextPattern (http://www.textpattern.com).
Version: 1.0 (27/02/2006 - 13:15).
Author: Jonathan Emanuel Lewenhaupt (http://www.lewenhaupt.com.ar)
Collaborator: Federico (http://www.511.dabomb.com.ar)
Licence: GPL.
================================================

INSTALATION

Welcome to "Sangre Brillante". This great theme is from Jonathan Emanuel Lewenhaupt at Lewenhaupt.com.ar.

============
Folder: "images"
============

Via FTP, put the "images" directory of this archive into the /textpattern directory of your hosting.
The "images" directory should be http://domainname/textpattern/images

============
Folder: "CSS"
============

Go to presentation/style and you will be shown the "default" CSS. Delete everything that is in the text box (you cannot delete the file) then open up the CSS.txt file from the download and copy/paste it into the text box and save it. Done.

============
Folder: "Pages"
============

In the folder called "Pages" you will find 2 text files.

In TXP go to "presentation/pages". Now open the "default.txt" file from the download and copy/paste the whole thing into the text box and save it.

Now select the "archive" page and do the same thing using the "archive.txt" file from the download as your source.

============
Folder: "Forms"
============

In the folder called "Forms" you should find 17 text files. You will see that most of the forms already exist in your forms listing in which case you can follow the same procedure as you did for the page templates with one extra process which I will get to in a minute. For the new ones simply click on "Create new form" above the listing on the right and you will be presented with an empty text box to fill.

I have used a specific naming convention to name the form template text files included here.

Totally ignore the .txt suffix.
The first part - example: sidebar - is the Form name.
The bit after the name is "misc". That is the Form type.

Overwrite any existing form templates or create new ones remembering to fill in the Form name and Form type boxes as well.

===============
About "Navbar" Form
===============

You can manage or create sections in the admin, but you should remember to modify the navbar form template to include these in the links.

This install assumes that you are using clean URL's. You will need to modify the menu calls in the "navbar" form to call the sections properly. Example: If you have a section called "Gallery", replace

<txp:if_section name="seccion1">
<li><a href="<txp:site_url />seccion1" class="activeseccion">seccion 1</a></li>
<txp:else />
<li><a href="<txp:site_url />seccion1">seccion 1</a></li>
</txp:if_section>

by

<txp:if_section name="gallery">
<li><a href="<txp:site_url />gallery" class="activeseccion">Gallery</a></li>
<txp:else />
<li><a href="<txp:site_url />gallery">Gallery</a></li>
</txp:if_section>

That's all